home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Xvi V1.0 / xvinit < prev    next >
Text File  |  1996-09-26  |  1KB  |  78 lines

  1. " xvinit file for xvi (Public Domain vi)
  2. " Revised Date: 10/27/94
  3. "
  4. set noshowmatch nowrapscan magic number noremap
  5. set autosplit=1
  6. set report=1
  7. set helpfile=Work:Xvi_Editor/xvi.help
  8. " Make status line yellow text on dark blue background.
  9. set statuscolour=0037
  10. "
  11. "---Key Mapping-------------------------------------------------
  12. "
  13. " Del
  14. map  x
  15. "
  16. " Turn off function keys by mapping them to control-L
  17. " F1
  18. map P 
  19. " F2
  20. map Q 
  21. " F3
  22. map R 
  23. " F4
  24. map S 
  25. " F5
  26. map T 
  27. " F6
  28. map U 
  29. " F7
  30. map V 
  31. " F8
  32. map W 
  33. " F9
  34. map X 
  35. " F10
  36. map Y 
  37. "
  38. " Shifted F1
  39. map p 
  40. " Shifted F2
  41. map q 
  42. " Shifted F3
  43. map r 
  44. " Shifted F4
  45. map s 
  46. " Shifted F5
  47. map t 
  48. " Shifted F6
  49. map u 
  50. " Shifted F7
  51. map v 
  52. " Shifted F8
  53. map w 
  54. " Shifted F9
  55. map x 
  56. " Shifted F10
  57. map y 
  58. "
  59. " Up Arrow
  60. map A k
  61. " Down Arrow
  62. map B j
  63. " Right Arrow
  64. map C l
  65. " Left Arrow
  66. map D h
  67. "
  68. " Shifted Up Arrow -> Page up
  69. map a 
  70. " Shifted Down Arrow -> Page down
  71. map b 
  72. " Shifted Right Arrow -> Cursor to right end of line
  73. map c $
  74. " Shifted Left Arrow -> Cursor to left end of line
  75. map d 0
  76. "
  77. " End of file.
  78.